home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _gs / !GS / h / CFRAME_ < prev    next >
Text File  |  1991-10-27  |  2KB  |  41 lines

  1. /* Copyright (C) 1990 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* cframe_.h */
  21. /* System-dependent definitions for C stack frame format */
  22.  
  23. /* cstack_top_frame(a_jmp_buf) returns a pointer which can be */
  24. /* handed to stack_next_frame to give the top frame on a stack. */
  25. /* cstack_next_frame(a_frame_ptr) gives the next frame pointer. */
  26. #ifdef VMS
  27. #  define cstack_top_frame(buf)        /* buf is a jmp_buf */\
  28.     (char *)&buf
  29. #  define cstack_next_frame(fptr)\
  30.     *((char **)(fptr) + 12)
  31. #else                    /* generic Unix */
  32. #  define cstack_top_frame(buf)        /* buf is a jmp_buf */\
  33.     (char *)buf[0]
  34. #  define cstack_next_frame(fptr)\
  35.     *((char **)(fptr) + 3)
  36. #endif
  37.  
  38. #ifdef ARC
  39. /* Use of these is disabled, so it doesn't matter what they are set to. */
  40. #endif
  41.